Questions tagged [postal-code]

A postal code is a series of letters and/or digits which is useful to identify the a particular region within a postal address. Once postal codes were introduced, other applications became possible.

A postal code is a series of letters and/or digits which is useful to identify the a particular region within a postal address. Once postal codes were introduced, other applications became possible.

In February 2005, 117 of the 190 member countries of the Universal Postal Union had postal code systems. Countries that do not have national systems include Ireland and Panama. Although Hong Kong and Macau are now Special Administrative Regions of China, each maintains its own long-established postal system, which does not utilize postal codes for domestic mail, and no postal codes are assigned to Hong Kong and Macau. Mail between Hong Kong, Macau and mainland China is treated as international.

399 questions
0
votes
1 answer

API UPS not return postal code and weight

On the documentation https://developer.ups.com/api/reference?loc=en_US#operation/getSingleTrackResponseUsingGET We can have the postalCode and Weight in the response, but when I try with API of UPS, there aren't. curl -i -X GET \ …
binbin
  • 131
  • 1
  • 11
0
votes
1 answer

Stripe Element: How can I get the valid or invalid status of the postal code field?

How can I get the valid or invalid status of the postal code field in the Stripe Address Element SS of the problem I tried this code. but it has not worked. here is the code : const postalCode = elements.getElement('postalCode'); const isInvalid =…
0
votes
0 answers

How do I create multiple join conditions from the same table?

Context: i'm working on a table that contains 2 fields that may include geo-identifying data. The fields can either contain NUTS codes or Postcodes (even partial). (https://en.wikipedia.org/wiki/Nomenclature_of_Territorial_Units_for_Statistics). Now…
ratouney
  • 49
  • 2
  • 9
0
votes
1 answer

How do i create polygons from a CSV file containing LSOA/post code data in QGIS?

I have a CSV file containing all of my city's post codes. this same file also contains lat/long coordinates, ward, ward code, district code, LSOA, etc. How can I load this csv into qgis so that the post code areas or LSOA codes are presented as a…
0
votes
0 answers

WooCommerce auto state and city selection on entering pincode

In my WooCommerce store, I want the customer to just fill in their shipping pincode on checkout and the state and city fields should be filled automatically. I tried google address auto complete but that fills in all the address fields. I just want…
0
votes
0 answers

GEO Postcode more countrys

It is about my site, it is a ad portal and 3 geodata are installed in the system: Germany, Switzerland and Austria. When I look for an advertisement in Germany, everything works correctly, I'm looking for zip code 68259 and a radius of 30 km. The…
0
votes
1 answer

Look up LSOA for a column of postcodes in R

I have a dataframe (df) which includes a column titled "Home.Postcode" which contains UK postcodes. I want to create a new column in the dataframe with the corresponding lower super output area (LSOA) for each of these postcodes. I then want to add…
Jess
  • 11
  • 2
0
votes
2 answers

Extract character before space from UK postcode

In my data Postcode records are as below 1.'ABC XYZ' 2.' EFG PQR' Requirements is to get all character before space So for first record ,I am getting expected result if I am putting select NVL(substr(postcode,0,instr(postcode,' ')-1),…
0
votes
1 answer

Error in subset.default using bulk_postcode_loo

Ultimately I want to use postcodes for all state-funded secondary schools in England, but for now I'm trying to figure out what code I will need to use, so using a selection of just 5. I want to retrieve the coordinates (so latitude and longitude)…
Jess
  • 11
  • 2
0
votes
0 answers

Nominatim Library, invalid postal code in C#, visual studio

I have a project to do that requires the calculation of distances. For that, i'm using the Nominatim Library in order to get coordinates with postal codes. However, I made an exception that would be thrown if the postal code was invalid and it keeps…
0
votes
0 answers

Hi i need to add multiple minimum minimum_order_amount for other postcodes

i'm using this code that i found here! the problem is i need to add multiple minimum minimum_order_amount for other postcodes! Help! add_action( 'woocommerce_checkout_process', 'wc_minimum_order_amount' ); add_action( 'woocommerce_before_cart' ,…
0
votes
0 answers

Pandas - division of postal code from city name

I encountered a fairly common problem at work, for which I decided to write a seemingly simple code, I need from a text file where cities with routing numbers are written. the data looks like this 62422 Prague 65233 London 64223 Kutná Hora 43356…
Felin
  • 1
0
votes
1 answer

How to collect from Internet, Postal Codes of Cities and States? (WEB SCRAPPING SSIS)

In an SSIS project, I need to merge my Cities with Postal codes. I tried to scrap datas from Internet but there are many errors like special characters that are not readable or makes errors,warnings in ssis.
0
votes
1 answer

Python - Determine State from Post Code Range

EXPLANATION: Basically I would like a post code range (6000 - 6997), to determine State "WA" and be listed as "WA" in the State column. So if the post code, for example, is 6100 - the State will be "WA". There are 4 columns: Customer | Address |…
Jayne
  • 1
  • 1
0
votes
3 answers

Having difficulty in pattern matching Postal Codes for an oracle regexp_like command

The Problem: All I'm trying to do is come up with a pattern matching string for my regular expression that lets me select Canadian postal codes in this format: 'A1A-2B2' (for example). The types of data I am trying to insert: Insert Into Table …
ThrowAway
  • 13
  • 4