diff --git a/src/Plugin/migrate/cckfield/Address.php b/src/Plugin/migrate/cckfield/Address.php
new file mode 100644
index 0000000..d362650
--- /dev/null
+++ b/src/Plugin/migrate/cckfield/Address.php
@@ -0,0 +1,48 @@
+<?php
+
+namespace Drupal\address\Plugin\migrate\cckfield;
+
+use Drupal\migrate\Plugin\MigrationInterface;
+use Drupal\migrate_drupal\Plugin\migrate\cckfield\CckFieldPluginBase;
+
+/**
+ * @MigrateCckField(
+ *   id = "address",
+ *   core = {7},
+ *   type_map = {
+ *    "addressfield" = "address"
+ *   }
+ * )
+ */
+class Address extends CckFieldPluginBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getFieldFormatterMap() {
+    return [
+      'addressfield_default' => 'address_default',
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getFieldWidgetMap() {
+    return [
+      'addressfield_standard' => 'address_default',
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function processCckFieldValues(MigrationInterface $migration, $field_name, $data) {
+    $process = [
+      'plugin' => 'address_value',
+      'source' => $field_name,
+    ];
+    $migration->mergeProcessOfProperty($field_name, $process);
+  }
+
+}
diff --git a/src/Plugin/migrate/process/AddressValue.php b/src/Plugin/migrate/process/AddressValue.php
new file mode 100644
index 0000000..d045052
--- /dev/null
+++ b/src/Plugin/migrate/process/AddressValue.php
@@ -0,0 +1,43 @@
+<?php
+
+namespace Drupal\address\Plugin\migrate\process;
+
+use Drupal\migrate\MigrateExecutableInterface;
+use Drupal\migrate\ProcessPluginBase;
+use Drupal\migrate\Row;
+
+/**
+ * @MigrateProcessPlugin(
+ *   id = "address_value"
+ * )
+ */
+class AddressValue extends ProcessPluginBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
+    $parsed = [
+      'country_code' => $value['country'],
+      'administrative_area' => $value['administrative_area'],
+      'locality' => $value['locality'],
+      'dependent_locality' => $value['dependent_locality'],
+      'postal_code' => $value['postal_code'],
+      'sorting_code' => '',
+      'address_line1' => $value['thoroughfare'],
+      'address_line2' => $value['premise'],
+      'organization' => $value['organisation_name'],
+    ];
+    if (!empty($value['first_name']) || !empty($value['last_name'])) {
+      $parsed['given_name'] = $value['first_name'];
+      $parsed['family_name'] = $value['last_name'];
+    }
+    elseif (!empty($value['name_line'])) {
+      $split = explode(" ", $value['name_line']);
+      $parsed['given_name'] = array_shift($split);
+      $parsed['family_name']  = implode(" ", $split);
+    }
+    return $parsed;
+  }
+
+}
