Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
neighborhood-outlines
Advanced tools
Takes GeoJSON data for neighborhood outlines, and formats it so that we can use them on our maps.
Takes GeoJSON data for neighborhood outlines, and formats it so that we can use them on our maps.
Each main city (Berlin, Leipzig, Potdam) has a folder containing folders for each of the main districts (Bezirke). Inside each of these folders is a single JSON file for each of the neighborhoods (Ortsteile). You can choose to pull in an entire city with all the districts, or import each one as needed. You can also pull in the entire city with all the nieghborhoods, or import each one as needed.
// importing a single Bezirk for a city
import { bezirkLichtenberg } from 'neighborhoods-outlines/berlin';
// importing ALL the Bezirke for a city
import { berlin, leipzig } from 'neighborhood-outlines';
or
import { allBezirks } from 'neighborhood-outlines/berlin;
// importing a selection of Ortsteile for a city
import { moabit, wedding, schoeneberg } from 'neighborhood-outlines/berlin';
// importing ALL the Ortsteile for a city
import { berlinNeighborhoods, leipzigNeighborhoods } from 'neighborhood-outlines';
or
import { allNeighborhoods } from 'neighborhood-outlines/berlin;
import { berlin } from 'neighborhood-outlines';
inside of GoogleMapReact onGoogleApiLoaded handler:
const gMap = map.map_;
const shapes = berlin.reduce((results, nextNeighborhood) => {
if (Array.isArray(nextNeighborhood.coordinates[0])) {
nextNeighborhood.coordinates.forEach((coords) => {
const shape = new google.maps.Polygon({
paths: coords,
strokeColor: '#FF0000',
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: '#FF0000',
fillOpacity: 0.35,
zIndex: 1000,
});
results.push(shape);
});
} else {
const shape = new google.maps.Polygon({
paths: nextNeighborhood.coordinates,
strokeColor: '#FF0000',
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: '#FF0000',
fillOpacity: 0.35,
zIndex: 1000,
});
results.push(shape);
}
return results;
}, []);
shapes.forEach(shape => shape.setMap(gMap));
https://data.technologiestiftung-berlin.de/dataset/ortsteile/en
To use them, must follow these guidelines:
Für die Verwendung der Daten gelten folgende Nutzungsbestimmungen:
http://www.stadtentwicklung.berlin.de/geoinformation/download/nutzIII.pdf - Der Quellenvermerk gemäß §2 lautet "Geoportal Berlin / [Titel des Datensatzes]".
To use them, must follow these guidelines:
Für diese Datensätze gilt die "Datenlizenz Deutschland" in der aktuellen Fassung sowie die Nutzungsbedingungen des Open Data-Portals der Stadt Leipzig.
Bei Quellenangabe zitieren Sie bitte wie folgt: "Stadt Leipzig, Amt für Statistik und Wahlen, [Jahr]".
https://opendata.potsdam.de/explore/dataset/stadtteile/information/?location=10,52.47843,13.13759
FAQs
Takes GeoJSON data for neighborhood outlines, and formats it so that we can use them on our maps.
The npm package neighborhood-outlines receives a total of 1 weekly downloads. As such, neighborhood-outlines popularity was classified as not popular.
We found that neighborhood-outlines demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.