Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
The City API returns the city from a latitude and longitude using spatial mapping and data anlysis.
The City Library is a wrapper for the City API which gets a city or closest city from a latitude and longitude.
The City API uses an algorithim that utilises spatial mapping and sophisticated data analysis to give you a blazing fast and accurate response from over 150,000 cities from every country across the globe.
This package requires an API key which can be generated Here.
npm i city --save
const city = require( 'city' )
//Using Promises
city.get( latitude, longitude, size, apiKey )
.then( location => {
console.log( location )
})
.catch( e => console.log( e ))
//Async await
const location = await city.get( latitude, longitude, size, apiKey )
Size | Description |
---|---|
NULL | This will search through every city of every size |
0 | Major Cities, 1m+ population |
1 | Big Cities, 250k - 1m population |
2 | Medium Cities, 10k - 250k population |
3 | Small cities, under 10k population |
city.get( 35.4526317, 139.4546863, 0, apiKey )
//Response
{
city: 'Yokohama'.
country: 'JP',
population: 3574443,
distance: 17.823109463333083
}
city.get( 42.34133262, -83.05576000, 1, apiKey )
//Response
{
city: 'Detroit'.
country: 'US',
population: 677116,
distance: 1.3745663787473823
}
Property | Description |
---|---|
city | The city name. |
country | The 2 letter country code which the city is located. |
population | The last updated population of that city. |
distance | The distance between the user and city center in km. |
Status | Error | Description |
---|---|---|
422 | API KEY NOT FOUND | You need to pass your API key as a parameter. You can get one Here. |
422 | INVALID API KEY | Your key is invalid or badly formatted. |
422 | INVALID SIZE | Your size parameter is invalid. |
402 | NO CREDITS REMAINING | You need to purchase more credits for your key. You can do that Here. |
422 | INVALID COORDINATES | Missing or invalid latitude/ longitude. |
This is a brand new API launced in February 2021. Full Documentation will be here soon.
Click Here to see the full documentation
FAQs
The City API returns the city from a latitude and longitude using spatial mapping and data anlysis.
The npm package city receives a total of 2 weekly downloads. As such, city popularity was classified as not popular.
We found that city 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.