I know it's possible to target ads geographically based on zip codes and/or the radius around a given coordinate. Is it somehow possible to target ads geographically based on a shapefile (census Canada for example) or do we have to essentially "build" the shapefile using a combination of zip codes and radius inclusions / exclusions?
Facebook Audience API - Targeting Audiences using Shapefiles
252 Views Asked by Jenn At
1
There are 1 best solutions below
Related Questions in FACEBOOK
- Facebook Api - Albums/Photos/Comments
- How to get Facebook subscriber count + friend count
- Firebase facebook authentication not working
- Facebook iOS SDK 4 error info.plist
- Why don't any of my facebook share buttons work?
- Can't perform authentication through facebook with Parse
- PlayN and Firefox issues
- How do I stop the facebook send widget from going off the screen?
- Add extended permissions - Facebook
- Pass image, summary, URL to Facebook share button in ASP.NET MVC
- Facebook Open Graph Description in a message length limitation
- Facebook ShareKit image caption not working
- how to display Notification Count in iOS like Facebook
- How to estimate current situation of an old site not created by myself before i launch my new one?
- Facebook Graph API limit publishing to fan page
Related Questions in FACEBOOK-ADS-API
- Get Ad Set schedule details
- How to get the product catalog associated to a product set
- Facebook Reach Estimate - not suficient permissions
- Facebook Marketing API some field are not shown
- In Facebook marketing API, where to set target URL of an Ad Campaign
- reachestimate of the union of facebook targeting specs
- Facebook conversion pixel can prevent website load?
- Can't create Facebook Ad creative with a facebook app in a development mode
- Filtering by action_target_id on Facebook Ads API
- How do I get the Facebook pixel to fire on a button click on my website?
- What is based Facebook PIXEL on?
- Using Google analytics need to papulate a report how many user comes to our site through fecebook ads
- Facebook ad creative with call to action returns no permission for call_to_action
- Get facebook campaigns for specific user
- Create Lead Ad connected to existing Form through API
Related Questions in FACEBOOK-AUDIENCE-NETWORK
- FacebookSDK on Android Studio - Using Audience Network
- Facebook Javascript SDK Audience Network Error 1003
- Facebook Audience Network Ads crashed as "divide by zero error" on Android
- Android Facebook Native ads error: 1001 no fill on user device
- Mopub: Facebook native ads no impression
- What does it mean about EXTENDED REVIEW on app?
- Implementing Facebook Audien Network Ads for iOS Apps in Swift
- Facebook Audience Network show banner ad
- Added FB mediation with admob but no ad's show
- If-else not work properly when use Facebook Interstitial Ad, interstitial ad shows automatically
- FB ads not loaded when i update FAN to 6.2.0 but ad loaded & shown on 5.+ sdk with same code
- I can't add Audience network in Facebook developer account
- How to call only onAdloaded on Facebook Native Ads using normal Adlistener call all override
- FAN Banner with ListView in Flutter
- Applovin MAX Facebook Bidding : Does it Actually Works?
Related Questions in FACEBOOK-CUSTOM-AUDIENCE
- Facebook Marketing API - lookalike audience creation - Can't create a duplicate lookalike
- Uploading data to a Custom dimension META
- Facebook custom audience PHP users replace
- Google Custom Audience/Similar Audience API
- Facebook custom audiences error: "There was a problem replacing your customer list Custom Audience. Try again later." - Marketing API
- Facebook ads custom audience Data is missing or does not match schema error
- Facebook throwing strange error when attempting to create custom audience with sandbox ad account
- Using facebook external_id with pixel and custom audience
- Facebook - Custom audience deleting users issues
- For ad retargeting, how does Facebook match people who visit your website using a mobile browser with people who have Facebook accounts?
- Facebook ads API // passing fbp parameters to build the target Custom Audiences
- How to filter Facebook custom audience GET request by data_source type and subtype via filtering parameter
- Facebook graph api website custom audience rules not created giving error
- Getting empty object when sharing lookalike audience with adaccount - Facebook API
- Facebook CustomAudience - Policy ID is not available for Ad Account
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It seems the only real "shapes" for a target audience is either providing a country, state (or province if in Canada), congressional district and some zipcodes:
Canada province:
US Congressional District
US Zipcode
However, some zipcodes map to a simple point so you need to fallback to a coordinate and radius.
I guess the only way to create an audience for a given polygon is to try and fill its surface with circles, considering those circles have a minimum radius, so it will always be just an approximation.
There are examples of circle-packing around. I repaired an old gist (https://gist.github.com/shashashasha/1020117) to make you a plunkr example.
See this plunker
However, circle packing considers that circles shouldn't overlap each other, so you'll have to figure out another way to achieve the same.