
Research
/Security News
DuckDB npm Account Compromised in Continuing Supply Chain Attack
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
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.
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.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.