Geographical Analysis of UK Steem Accounts by miniature-tiger

View this thread on steempeak.com
· @miniature-tiger · (edited)
$90.01
Geographical Analysis of UK Steem Accounts
This study looks to derive statistics on Steem blockchain users in the United Kingdom, the country in which I reside. 

The aims of the study are:
* To build a picture of the geographical spread of Steem accounts across the United Kingdom. This information could be useful to organisations such as @promo-steem for their marketing operations.
* To look at the level of activity of Steem users across the United Kingdom. These statistics could help UK Steem users aiming to build their local networks or organise events. 
* To look at the geographical diversity of new users across the United Kingdom. This also has value as marketing information and could additionally be used to help established Steem users welcome new joiners in their area. 
##

![cover uk analysis.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1516226285/yj5ixseeb5uzzrg89t45.png)

The approach I have applied does not use any particular post tag but instead relies upon the account location information that the user enters in their profile. It should be noted that this data relies upon user input and a large proportion of accounts leave this information blank. However, having looked at the data, there are sufficient entries to draw statistically reliable results. Readers of this analysis should bear in mind this limitation and that actual United Kingdom user numbers will be higher than those stated.


There are three parts to the analysis:
* **Geographical spread of all United Kingdom accounts**: 
A geographical breakdown of all United Kingdom Steem accounts by city, county or country. All accounts over all time are included in this first study. This will aim to illustrate where steem adoption has been highest to date and could provide useful information for marketing research;  

* **Geographical spread and activity statistics of active United Kingdom accounts**: 
A geographical breakdown of all *active* United Kingdom Steem accounts. Active has been defined as having posted an article or comments in the last month. This will illustrate where current Steem activity is highest in the UK and could be useful to Steem users looking to understand whether they could build a local network. 

* **Geographical spread of new United Kingdom accounts**: 
A geographical breakdown of *new* United Kingdom Steem accounts. New has been defined as an account created within the last two weeks. This will illustrate current hotspots for growth.
##  
---

## Outline

1. Scope of Analysis
2. Tools Used
3. Geographical spread - All accounts
4. Geographical spread and activity statistics - Active accounts
5. Geographical spread - New accounts
6. Scripts

##

---

## 1 Scope of Analysis

The analysis is based on the data for UK accounts obtained through SQL queries of SteemSQL, a publicly available Microsoft SQL database containing all the Steem blockchain data. 

The UK account data has been filtered from the overall Steem blockchain data by use of the `location` label information in the `json_metadata` column of the `Accounts` table. Due to the huge number of different account locations, the filtering took place using an iterative process in a spreadsheet, rather than through the SQL query.

The first part of the analysis includes data on accounts over all time. The second and third parts of the analysis focus on the last month and the last two weeks respectively. The data has been filtered by date using the timestamps in the `last_post` and `created` columns of the `Accounts` table.

---

## 2 Tools Used

Valentina Studio, a free data management tool, was used to run the SQL queries. The raw data was then verified and analysed in the spreadsheet application of the LibreOffice office suite. 

Graphs and charts were produced using Numbers, the Mac spreadsheet tool, or using RAWGraphs, an open source data visualisation framework.

SQL scripts are included at the end of this analysis. 

---

##

## 3 Geographical spread - All accounts

The first map below shows the geographical spread of all Steem accounts created over all time in the UK *(those with location information listed).*

The map illustrates that the geographical distribution is quite wide, with over 150 different cities and towns represented.

![Screen Shot 2018-01-17 at 12.52.25.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1516227377/nskqfowvo9iu942trkfx.png)

The largest locations can be better seen on this second map:

![Screen Shot 2018-01-17 at 13.00.45.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1516227446/wgxcgltujfajormkfafi.png)

It is clear that London has far and away the largest number of registered accounts, followed by Manchester, Birmingham, Leeds, and Edinburgh. It is perhaps unsurprising that the largest cities have the largest numbers of accounts. However the dominance of London is quite stark. We will see how active each of these areas is in the next section. 

##

---

## 4 Geographical spread and activity statistics - Active accounts

For activity statistics I have analysed the number of active users and the payouts from those active users over the last month.

##### Number of users

![active accounts numbers - cropped.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1516233900/twrf2zpsrlpvri9ikej2.png)

##

The pattern is not dissimilar to overall accounts with London again dominating followed by other major cities. There are easily enough active accounts in London to create a sizeable network. Smaller networks and connections could also be possible for the other main cities and university towns *(particularly given that there will be more users without a location referenced).*

##### Post payouts over last month

![Active accounts2.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1516234170/lcxmocynnlxioco2qhue.png)

From a quick study it becomes clear that the payout levels over the last month can be easily skewed by a single user. One active user in Newbury for example is sufficient to elevate the town to a high ranking on the chart, despite it not appearing on the chart by user numbers. Other than these occasional distortions the pattern is not overly dissimilar to that for user numbers.

---

## 5 Geographical spread - New accounts

Here is the map of new accounts created over the last two weeks:

![Screen Shot 2018-01-17 at 18.54.58.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1516227532/g9trmq5fsy4yqbvteezu.png)

As for overall accounts and activity statistics, London dominates the numbers of new accounts. Given the overall account numbers and population size it is likely that London generates the largest number of new accounts in most weeks. However there has also been recent marketing by @promo-steem in London which may have additionally significantly increased these numbers over January.

Here are the overall statistics for the top cities with the remaining cities and wider UK locations (counties and countries) grouped by country.

|Place|New Accounts|
|:-|:-|
|London|91|
|Manchester|9|
|Bristol|5|
|Birmingham|2|
|Cambridge|2|
|Newcastle|2|
|Yorkshire|5|
|England|31|
|Glasgow|3|
|Aberdeen|1|
|Scotland|12|
|Belfast|2|
|Northern Ireland|2|
|Swansea|1|
|Wales|8|
|UK|38|
|Total|214|

##
Manchester, Bristol, Glasgow and Belfast are the next four cities ranked by numbers of new users.
*England, Wales, Scotland , Northern Ireland and UK relate to new accounts in those countries not included in the individual cities in the table.*

If anyone is interested in the account names for a particular city or country I would be happy to provide these. 

---

## 6 Scripts

This was the script used for the second and third parts of the analysis - active accounts and new accounts.


~~~~

/* LOCATION ANALYSIS - ACTIVE */
SELECT
    Comments.author,
    IIF(CHARINDEX('\"location\":\"', accounts.json_metadata) > 0, SUBSTRING(accounts.json_metadata, CHARINDEX('\"location\":\"', accounts.json_metadata) + 15, CHARINDEX('\"', accounts.json_metadata, CHARINDEX('\"location\":\"', accounts.json_metadata) + 15) - CHARINDEX('\"location\":\"', accounts.json_metadata) - 15), 'Unspecified') as [Location], 
    convert(date, Accounts.last_post) as [LastPost],
    convert(date, Accounts.created) as [AccountCreated],
    Count(Comments.author) AS [Posts],
    Count(distinct Comments.author) AS [DistinctCommentAuthor],
    count(Comments.parent_author) AS [ParentAuthor],
    count(distinct Comments.parent_author) AS [DistinctParentAuthor],
    sum(CONVERT(REAL,Comments.pending_payout_value)) AS [PendingPayoutValue],
    sum(CONVERT(REAL,Comments.curator_payout_value)) AS [CuratorPayoutValue],
    sum(CONVERT(REAL,Comments.total_payout_value)) AS [TotalPayoutValue]

~~~~


~~~~

FROM
      Comments (NOLOCK)
        inner join Accounts (NOLOCK)
            on Comments.author = Accounts.name

~~~~

~~~~

WHERE
    convert(date, Accounts.last_post) >= '2017-12-17' and
    convert(date, Comments.created) >= '2017-12-17' 

~~~~


~~~~

GROUP BY
    Comments.author,
   IIF(CHARINDEX('\"location\":\"', accounts.json_metadata) > 0, SUBSTRING(accounts.json_metadata, CHARINDEX('\"location\":\"', accounts.json_metadata) + 15, CHARINDEX('\"', accounts.json_metadata, CHARINDEX('\"location\":\"', accounts.json_metadata) + 15) - CHARINDEX('\"location\":\"', accounts.json_metadata) - 15), 'Unspecified'),
   Accounts.last_post,
   convert(date, Accounts.created)

~~~~

A simplified versions of this script was used for the analysis of all accounts. The query can be obtained from the above simply by removing all the elements relating to the Comments table (including the inner join) and grouping instead by `name` from the Accounts table.  


##

That's all for today. Thanks for reading!


<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@miniature-tiger/geographical-analysis-of-uk-steem-accounts">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
post_id26,328,602
authorminiature-tiger
permlinkgeographical-analysis-of-uk-steem-accounts
categoryutopian-io
json_metadata"{"repository": {"owner": {"login": "steemit"}, "id": 54517947, "full_name": "steemit/steem", "fork": false, "name": "steem", "html_url": "https://github.com/steemit/steem"}, "moderator": {"pending": false, "account": "crokkon", "reviewed": true, "flagged": false, "time": "2018-01-18T07:16:24.645Z"}, "format": "markdown", "platform": "github", "tags": ["utopian-io", "analysis", "uk", "steemit", "promo-uk"], "community": "utopian", "type": "analysis", "pullRequests": [], "links": ["https://res.cloudinary.com/hpiynhbhq/image/upload/v1516226285/yj5ixseeb5uzzrg89t45.png", "https://res.cloudinary.com/hpiynhbhq/image/upload/v1516227377/nskqfowvo9iu942trkfx.png", "https://res.cloudinary.com/hpiynhbhq/image/upload/v1516227446/wgxcgltujfajormkfafi.png", "https://res.cloudinary.com/hpiynhbhq/image/upload/v1516233900/twrf2zpsrlpvri9ikej2.png", "https://res.cloudinary.com/hpiynhbhq/image/upload/v1516234170/lcxmocynnlxioco2qhue.png", "https://res.cloudinary.com/hpiynhbhq/image/upload/v1516227532/g9trmq5fsy4yqbvteezu.png"], "app": "utopian/1.0.0", "users": ["promo-steem"], "image": ["https://res.cloudinary.com/hpiynhbhq/image/upload/v1516226285/yj5ixseeb5uzzrg89t45.png"]}"
created2018-01-18 00:27:15
last_update2018-01-18 07:16:24
depth0
children24
net_rshares13,488,815,984,484
last_payout2018-01-25 00:27:15
cashout_time1969-12-31 23:59:59
total_payout_value64.370 SBD
curator_payout_value25.644 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9,885
author_reputation74,702,189,892,733
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (32)
@mahdihawkeye ·
$0.03
properties (23)
post_id26,329,508
authormahdihawkeye
permlinkre-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180118t003436068z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "users": ["miniature-tiger"], "tags": ["utopian-io"]}"
created2018-01-18 00:34:45
last_update2018-01-18 00:34:45
depth1
children2
net_rshares3,740,288,858
last_payout2018-01-25 00:34:45
cashout_time1969-12-31 23:59:59
total_payout_value0.030 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length26
author_reputation106,605,049,898
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (7)
@miniature-tiger ·
Thank you!
👍  
properties (23)
post_id26,339,017
authorminiature-tiger
permlinkre-mahdihawkeye-re-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180118t015324502z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-01-18 01:53:24
last_update2018-01-18 01:53:24
depth2
children1
net_rshares74,044,740
last_payout2018-01-25 01:53:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10
author_reputation74,702,189,892,733
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@mahdihawkeye · (edited)
properties (23)
post_id26,348,050
authormahdihawkeye
permlinkre-miniature-tiger-re-mahdihawkeye-re-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180118t030747336z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-01-18 03:07:57
last_update2018-01-18 03:08:42
depth3
children0
net_rshares645,254,562
last_payout2018-01-25 03:07:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length14
author_reputation106,605,049,898
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (6)
@pennsif · (edited)
$0.25
<div class="pull-right">https://pennsif.com/wp-content/uploads/2018/01/welsh-flag-pixabay-23199-250x167.jpg</div>

Hi @miniature-tiger, this is fascinating information. Particularly the Wales element.

I am currently organising the [first Wales steemit meetup](https://steemit.com/promo-steem/@pennsif/steemit-in-wales-heading-for-100-growth-first-meetup-on-10-february) that takes place on 10 February.

As part of that I have also begun a [#SignUp100 campaign](https://steemit.com/promo-steem/@pennsif/a-challenge-for-2018-can-i-sign-up-100-new-people-to-steemit-in-one-year-signup100) to recruit 100 new steemians this year. I have just signed up number 8 today.

I have now been joined by another steemit user in Wales who is also going for 100, and another who is going for 50 this year.

While these won't all necessarily be in Wales, the large majority will be.

When I started Stephen Kendal went through the database and provided me with [a list of 63 steemians who could be identified as being in Wales](https://steemit.com/promo-uk/@pennsif/are-there-any-whales-in-wales-looking-for-steemians-in-wales-anyone-interested-in-a-meetup).

Upon investigation [only 15 of those were active](https://steemit.com/promo-uk/@pennsif/the-truth-about-wales-scary-statistics-revealed-how-can-we-improve-the-retention-rate).

It will be interesting to see if your re-run the data analysis in a few months if Wales gets a bigger showing.
👍  ,
properties (23)
post_id26,331,150
authorpennsif
permlinkre-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180118t004804300z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "image": ["https://pennsif.com/wp-content/uploads/2018/01/welsh-flag-pixabay-23199-250x167.jpg"], "users": ["miniature-tiger"], "links": ["https://steemit.com/promo-steem/@pennsif/steemit-in-wales-heading-for-100-growth-first-meetup-on-10-february", "https://steemit.com/promo-steem/@pennsif/a-challenge-for-2018-can-i-sign-up-100-new-people-to-steemit-in-one-year-signup100", "https://steemit.com/promo-uk/@pennsif/are-there-any-whales-in-wales-looking-for-steemians-in-wales-anyone-interested-in-a-meetup", "https://steemit.com/promo-uk/@pennsif/the-truth-about-wales-scary-statistics-revealed-how-can-we-improve-the-retention-rate"], "tags": ["utopian-io"]}"
created2018-01-18 00:48:06
last_update2018-01-18 00:52:30
depth1
children5
net_rshares30,847,659,609
last_payout2018-01-25 00:48:06
cashout_time1969-12-31 23:59:59
total_payout_value0.234 SBD
curator_payout_value0.017 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,433
author_reputation1,130,663,397,949,642
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@miniature-tiger ·
$0.19
Great work @pennsif!

I can see 38 active Wales accounts in the data now *(although active is always hard to capture without getting into a lot of detail - and for this study I used a fairly easy requirement)* but it looks like you're already having an effect. You may need to lay in a few extra drinks for your meetup!

Good luck with your Sign Ups and let me know if you need any data run to measure the overall progress in Wales.
👍  
properties (23)
post_id26,333,944
authorminiature-tiger
permlinkre-pennsif-re-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180118t011206256z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "users": ["pennsif"], "tags": ["utopian-io"]}"
created2018-01-18 01:12:06
last_update2018-01-18 01:12:06
depth2
children3
net_rshares22,930,318,144
last_payout2018-01-25 01:12:06
cashout_time1969-12-31 23:59:59
total_payout_value0.182 SBD
curator_payout_value0.004 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length432
author_reputation74,702,189,892,733
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@pennsif ·
Hi @miniature-tiger, getting real numbers to measure what we are doing in Wales would be super useful.

**Would a regular end-of-month count of total numbers and active numbers in Wales be too big an ask?**   

Sorry I don't have a feel for how big or small a task that would be.

Happy to fire some full upvotes your way to compensate for your time.
properties (22)
post_id26,334,611
authorpennsif
permlinkre-miniature-tiger-re-pennsif-re-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180118t011722724z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "users": ["miniature-tiger"], "tags": ["utopian-io"]}"
created2018-01-18 01:17:24
last_update2018-01-18 01:17:24
depth3
children2
net_rshares0
last_payout2018-01-25 01:17:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length350
author_reputation1,130,663,397,949,642
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cliodhna ·
I would be there if I could ! https://steemit.com/introduceyourself/@cliodhna/my-first-week-on-steemit I am working on encouraging my brother to sign up!
properties (22)
post_id27,112,542
authorcliodhna
permlinkre-pennsif-re-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180121t200533760z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/introduceyourself/@cliodhna/my-first-week-on-steemit"], "tags": ["utopian-io"]}"
created2018-01-21 20:05:33
last_update2018-01-21 20:05:33
depth2
children0
net_rshares0
last_payout2018-01-28 20:05:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length153
author_reputation9,697,653,591
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cryptoexplorer7 ·
informative analysis.
👍  
properties (23)
post_id26,332,461
authorcryptoexplorer7
permlinkre-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180118t005919595z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-01-18 00:59:21
last_update2018-01-18 00:59:21
depth1
children1
net_rshares633,100,126
last_payout2018-01-25 00:59:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length21
author_reputation604,103,165,045
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@miniature-tiger ·
Thank you.
properties (22)
post_id26,339,074
authorminiature-tiger
permlinkre-cryptoexplorer7-re-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180118t015351591z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-01-18 01:53:51
last_update2018-01-18 01:53:51
depth2
children0
net_rshares0
last_payout2018-01-25 01:53:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10
author_reputation74,702,189,892,733
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@crokkon ·
$0.03
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/uTyJkNm).
**[[utopian-moderator]](https://utopian.io/moderators)**
👍  
properties (23)
post_id26,376,711
authorcrokkon
permlinkre-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180118t071628680z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2018-01-18 07:16:30
last_update2018-01-18 07:16:30
depth1
children1
net_rshares3,165,500,632
last_payout2018-01-25 07:16:30
cashout_time1969-12-31 23:59:59
total_payout_value0.021 SBD
curator_payout_value0.004 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length172
author_reputation75,470,595,669,689
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@miniature-tiger ·
Thanks @crokkon.
properties (22)
post_id26,391,087
authorminiature-tiger
permlinkre-crokkon-re-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180118t092036130z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "users": ["crokkon"], "tags": ["utopian-io"]}"
created2018-01-18 09:20:36
last_update2018-01-18 09:20:36
depth2
children0
net_rshares0
last_payout2018-01-25 09:20:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length16
author_reputation74,702,189,892,733
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@eroche ·
$0.13
You have presented this analysis beautifully. Very useful info.
👍  
properties (23)
post_id26,435,258
authoreroche
permlinkre-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180118t142753814z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-01-18 14:27:54
last_update2018-01-18 14:27:54
depth1
children1
net_rshares15,830,031,784
last_payout2018-01-25 14:27:54
cashout_time1969-12-31 23:59:59
total_payout_value0.099 SBD
curator_payout_value0.030 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length63
author_reputation59,490,065,137,068
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@miniature-tiger ·
Thanks @eroche! 

It was a real pain to filter the data behind the scenes but in the end I was really pleased with the amount of information it produced and the way it came together on the presentation. 

I'm planning to start using it to build support for London steem users in general, as well as helping out pennsif above so hopefully it will also have some practical use!
properties (22)
post_id26,446,431
authorminiature-tiger
permlinkre-eroche-re-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180118t152952450z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "users": ["eroche"], "tags": ["utopian-io"]}"
created2018-01-18 15:29:51
last_update2018-01-18 15:29:51
depth2
children0
net_rshares0
last_payout2018-01-25 15:29:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length375
author_reputation74,702,189,892,733
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@utopian-io ·
### Hey @miniature-tiger I am @utopian-io. I have just upvoted you!
#### Achievements
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
properties (22)
post_id26,443,462
authorutopian-io
permlinkre-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180118t151239738z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2018-01-18 15:12:39
last_update2018-01-18 15:12:39
depth1
children0
net_rshares0
last_payout2018-01-25 15:12:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,013
author_reputation152,913,012,544,965
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tehnosia ·
Wow complete data
London no 1
👍  
properties (23)
post_id26,540,778
authortehnosia
permlinkre-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180119t024239751z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-01-19 02:42:42
last_update2018-01-19 02:42:42
depth1
children1
net_rshares1,244,876,261
last_payout2018-01-26 02:42:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length29
author_reputation25,183,211,396
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@miniature-tiger ·
Yay London!
properties (22)
post_id27,112,766
authorminiature-tiger
permlinkre-tehnosia-re-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180121t200708644z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-01-21 20:07:09
last_update2018-01-21 20:07:09
depth2
children0
net_rshares0
last_payout2018-01-28 20:07:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length11
author_reputation74,702,189,892,733
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@damahsyari ·
cool postings can only be born by great people. hopefully I can be like you in getting a vote. because I have very little sound when I write something. your writing is an inspiration to me.
properties (22)
post_id26,542,056
authordamahsyari
permlinkre-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180119t025223244z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-01-19 02:52:27
last_update2018-01-19 02:52:27
depth1
children0
net_rshares0
last_payout2018-01-26 02:52:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length189
author_reputation246,730,149,688
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jga ·
Wow, very good analysis. Thanks for sharing. I would like do the same in america
👍  
properties (23)
post_id26,690,972
authorjga
permlinkre-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180119t200630886z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-01-19 20:06:33
last_update2018-01-19 20:06:33
depth1
children1
net_rshares1,244,876,261
last_payout2018-01-26 20:06:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length80
author_reputation31,866,424,217,867
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@miniature-tiger ·
You should try it! Just use the script I have provided and analyse the data you get from there.
properties (22)
post_id27,112,868
authorminiature-tiger
permlinkre-jga-re-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180121t200745170z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-01-21 20:07:45
last_update2018-01-21 20:07:45
depth2
children0
net_rshares0
last_payout2018-01-28 20:07:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length95
author_reputation74,702,189,892,733
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cliodhna ·
$0.03
SO few ! So few UK Steemits! Fascinating ! https://steemit.com/introduceyourself/@cliodhna/my-first-week-on-steemit
👍  
properties (23)
post_id27,112,398
authorcliodhna
permlinkre-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180121t200432144z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/introduceyourself/@cliodhna/my-first-week-on-steemit"], "tags": ["utopian-io"]}"
created2018-01-21 20:04:30
last_update2018-01-21 20:04:30
depth1
children2
net_rshares3,112,190,653
last_payout2018-01-28 20:04:30
cashout_time1969-12-31 23:59:59
total_payout_value0.030 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length115
author_reputation9,697,653,591
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@miniature-tiger ·
I think there if huge scope for Steem to grow everywhere - with only a tens of thousands of active users it could easily go x1000 in user terms.
👍  
properties (23)
post_id27,112,996
authorminiature-tiger
permlinkre-cliodhna-re-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180121t200842395z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-01-21 20:08:42
last_update2018-01-21 20:08:42
depth2
children1
net_rshares434,217,105
last_payout2018-01-28 20:08:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length144
author_reputation74,702,189,892,733
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@cliodhna ·
I hope so, I really enjoy the platform and the idea!
properties (22)
post_id27,113,358
authorcliodhna
permlinkre-miniature-tiger-re-cliodhna-re-miniature-tiger-geographical-analysis-of-uk-steem-accounts-20180121t201106680z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-01-21 20:11:06
last_update2018-01-21 20:11:06
depth3
children0
net_rshares0
last_payout2018-01-28 20:11:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length52
author_reputation9,697,653,591
root_title"Geographical Analysis of UK Steem Accounts"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000