Questions tagged [utm]

Use this tag only for questions related to the Universal Transversal Mercator coordinates system. For questions related to Google Analytics, use the [utm-tracking] tag.

Universal Transversal Mercator (UTM) is a geographic coordinate system to give locations on the surface of the Earth.

303 questions
2
votes
4 answers

Regex UTM google

I'm trying to extract a UTM from a Google link using r, but my regex doesn't seem to work properly. Here an example of a google link : xxx/yyy?utm_medium=display&utm_source=ogury&utm_campaign=TOTO&zzz=coco I tried the following regex to extract…
Alex Paris
  • 21
  • 1
  • 2
2
votes
1 answer

Measure distance between lat/lon coordinates and utm coordinates

I have a set of lat/lon coordinates for different nodes. Since I have to represent these positions in a simulator, I have to convert them to cartesian coordinates. For this I use the python package pyproj. lat1 = 50.0 lon1 = 10.0 lat2 = 50.5 lon2 =…
stulleman
  • 163
  • 2
  • 14
2
votes
0 answers

Alternatives to Google's UTM tags?

I'm looking for a simple way of tracking link clicks (sent via e-mail) to an outside url. Google's UTM tags look like the perfect solution, but instead of sending the information to GA, I want it to send to my servers. Is there a way to do this?…
MortiestMorty
  • 635
  • 1
  • 5
  • 13
2
votes
2 answers

Get the UTM tags with Facebook Marketing API

I have few ads on Facebook. How should I get the UTM tags of this ads through the Facebook Marketing API? So even nobody open the link with UTM tags, everyday I use Facebook Marketing API to get information about impressions, clicks, source, medium,…
L. Lis
  • 21
  • 1
  • 5
2
votes
1 answer

How to find UTM zone using current latitude and longitude in android?

how to find UTM zone and Easting/Northing using lat/long in android. i tried to google it for android but i couldn't find any solution. so please help me here and if you have any sample code than please let me know. Or provide me any formula to…
Mr. Mad
  • 1,230
  • 1
  • 14
  • 28
2
votes
3 answers

How to track UTM parameters in all the pages?

If the user comes with the utm values to the landing page http://example.com/landing.php?utm_source=Facebook&utm_medium=Marketing&utm_term=FbAd&utm_content=Fad1&utm_campaign=FBFunnel In the Landing.php file I can Get the UTM values. and Google…
Ramesh
  • 121
  • 1
  • 2
  • 11
2
votes
2 answers

pandas - apply UTM function to dataframe columns

I'm working with this python package called UTM, which converts WGS84 coordinates to UTM and vice versa. I would like to apply this function to a pandas dataframe. The function works as follows: utm.from_latlon(51.2, 7.5) >>> (395201.3103811303,…
Fabio Lamanna
  • 20,504
  • 24
  • 90
  • 122
2
votes
1 answer

Plotting contours on map using ggmap

I have Particulate Matter concentration difference (After - Before) for Port of Los Angeles area. I am trying to use ggmap to plot concentration contours on map but the result looks way different. The code I used is shown below (and data is below…
Ankoor
  • 29
  • 1
  • 4
2
votes
2 answers

Hashbangs and UTM parameters

I am trying to run some campaigns to garner registrations and would like to use UTM parameters. Problem is my website urls contain hashbangs in it. Can i still generate UTM parameters tag for my urls with hashbangs in it?
2
votes
1 answer

Nginx redirect to hash

I have this vhost in nginx but i need to redirect with # (utm parameters) how to do it? server { server_name www.example1.com; return 301 https://www.example2.com$request_uri; # here I need add utm parameters }
Patrik Votoček
  • 675
  • 1
  • 8
  • 15
2
votes
3 answers

Getting a handle on GIS math, where do I start?

I am in charge of a program that is used to create a set of nodes and paths for consumption by an autonomous ground vehicle. The program keeps track of the locations of all items in its map by indicating the item's position as being x meters north…
Joshua
  • 374
  • 3
  • 17
2
votes
1 answer

Coordinates: convert from WGS84 to a *specific* UTM-region

There are a lot of free tools out there to convert from UTM to Lat/Long. Fine enough, but I need to go the other way; from WGS-84 to lat/long-format. But it's more complicated than that; 'couse I need the result to be in UTM-33 (nordic) zone. This…
qualbeen
  • 1,534
  • 4
  • 16
  • 27
2
votes
3 answers

Email link tracking without using utm parameters?

I would like to start tracking email visits to give them an email medium using GA campaign parameters However I'm not happy with the long utm link parameters; they are unsightly and also prone to getting shared inappropriately, as many people won't…
Drewdavid
  • 3,071
  • 7
  • 29
  • 53
2
votes
2 answers

how to keep utm_source data in database when a user sign up via this utm_source

I need to keep the new member's origin. I use utm_source for every external source. How can I keep that record from the utm_source inside link when a user from a source e.g. utm_source=facebook, come to my site and sign up? I need to see the source…
ctsnr
  • 25
  • 4
2
votes
0 answers

UTM to latitude-longitude, multiple post code UK

We have some data like this: Miles postcode X Y 3.13 al 2 1 517972 203372 2.6 al 2 2 514612 203397 Here X & Y is in UTM, we converted these values in Latitude & Longitude. For this lat-long we…