
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
@geocodeearth/ge
Advanced tools
[BETA] This repo is still a work-in-progress.
npm i -g @geocodeearth/ge
ge <cmd> [args]
Commands:
ge batch batch geocoding tools
Options:
--version Show version number [boolean]
-v, --verbose enable verbose logging [boolean] [default: false]
--help Show help [boolean]
In order to authenticate with the Geocode Earth servers you must have a valid API key from Geocode Earth. You can sign up for a free key at https://geocode.earth/ or visit https://app.geocode.earth/dashboard to find an existing key.
You must export your API key in your shell so it is available as an environment variable:
export GE_API_KEY=ge-xxxxxxxxxxxxxxxx
You can check that it's been set correctly with the env command.
ge batch csv <file>
append geocoded columns to a CSV file
Positionals:
file location of the input CSV file. [string] [required]
Options:
--version Show version number [boolean]
-v, --verbose enable verbose logging [boolean] [default: false]
--help Show help [boolean]
-p, --param Define a parameter. [string]
-t, --template Define a template. [string]
--endpoint API endpoint to query. [string] [default: "/v1/search"]
--concurrency Maximim queries per-second. [number] [default: 5]
Your input CSV must contain a header row on the first line with column names. Please ensure that the file is valid before continuing.
The basic usage is ge batch csv <file> where <file> can be either a file or a stream.
You can accept a CSV on stdin as such:
cat input.csv | ge batch csv /dev/stdin
and capture the updated CSV on stdout as such:
cat input.csv | ge batch csv /dev/stdin | xsv table
You can increase the verbosity for debugging purposes.
Logs are written to stderr:
ge batch csv --verbose
The basic usage is ge batch csv <file>, but this alone will not yield results.
You'll first need to define a mapping from the field names in your CSV to HTTP request parameters which will be sent to Geocode Earth.
This can be achieved using a pair of flags, -p to name the parameter and -t to define a template for the parameter value.
For example the following will set the querystring parameter text to equal 1 Main Street, London, assuming that the CSV contains columns named number, street and city:
ge batch csv \
-p 'text' \
-t '${row.number} ${row.street}, ${row.city}'
We use the lodash template engine and pass it a single variable row which contains the data for the current row in the CSV file.
You can add multiple pairs of parameters, please take care to match each -p with a -t.
note: be careful to use single-quotes ' instead of double-quotes " on the command-line to avoid your shell interpolating the string.
We append the most commonly requested columns to the output CSV file by default, this is sufficient for most use-cases. In some situations you may wish to extract additional data from the API results and store it in a new CSV column.
This can be achieved using a pair of flags, -c to name the new column and -s to define an object selection path which is passed to lodash _.get().
For example the following will add a new column named wikipedia filled with values from the "wk:page" key in the properties.addendum.concordances object of API responses:
ge batch csv \
-c 'ge:wikipedia' \
-s 'properties.addendum.concordances["wk:page"]'
Note: if _.get() yeilds and empty value, the new column will be empty. If the value isn't scalar (ie. an Array or Object) then the column will contain a JSON encoded version of the value.
ge batch csv \
--endpoint '/v1/search' \
-p 'text' -t '${row.NUMBER} ${row.STREET}, ${row.CITY}' \
-p 'boundary.country' -t 'NZ' \
/data/oa/nz/countrywide.csv
ge batch csv \
--endpoint '/v1/search/structured' \
-p 'address' -t '${row.NUMBER} ${row.STREET}' \
-p 'city' -t '${row.CITY}' \
-p 'boundary.country' -t 'NZ' \
/data/oa/nz/countrywide.csv
ge batch csv \
--endpoint '/v1/reverse' \
-p 'point.lat' -t '${row.LAT}' \
-p 'point.lon' -t '${row.LON}' \
/data/oa/nz/countrywide.csv
ge batch csv \
--endpoint '/v1/autocomplete' \
-p 'text' -t '${row.NUMBER} ${row.STREET}, ${row.CITY}' \
-p 'focus.point.lat' -t '${row.LAT}' \
-p 'focus.point.lon' -t '${row.LON}' \
-p 'boundary.country' -t 'NZ' \
/data/oa/nz/countrywide.csv
FAQs
Geocode Earth command-line tools
The npm package @geocodeearth/ge receives a total of 29 weekly downloads. As such, @geocodeearth/ge popularity was classified as not popular.
We found that @geocodeearth/ge demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.