Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bigquery-geoip

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bigquery-geoip

Bigquery maxmind geoip loader

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

bigquery-geoip

Bigquery maxmind geoip loader

Download GeoLite2

Sign up for an account at https://maxmind.com.

Download and extract the following databases:

  1. GeoLite2-ASN-CSV
  2. GeoLite2-City-CSV

Create dataset

bq mk geoip

Load tables

First, cd to the parent directory of the extracted database directories:

cd ~/Downloads

# These paths should exist:
ls GeoLite2-ASN-CSV*/GeoLite2-ASN-Blocks-IPv4.csv
ls GeoLite2-City-CSV*/GeoLite2-City-Blocks-IPv4.csv
ls GeoLite2-City-CSV*/GeoLite2-City-Locations-en.csv

Then run the load script:

npm install -g bigquery-geoip
bigquery-geoip

Try it out

with ips as (
  select "162.213.133.27" as ip
)
select city.*, ips.*
from ips
left join geoip.city
  on CAST(NET.IPV4_TO_INT64(NET.IP_FROM_STRING(ips.ip))/(256*256*256) as INT64) = class_a
    and NET.IPV4_TO_INT64(NET.IP_FROM_STRING(ips.ip)) between start_num and end_num

Customize dataset name

The default dataset name is geoip. Customize it by adding an argument:

bigquery-geoip ipToCity

FAQs

Package last updated on 06 Jan 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc