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..e04c81c
--- /dev/null
+++ b/src/Plugin/migrate/process/AddressValue.php
@@ -0,0 +1,41 @@
+<?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) {
+    $recipient = !empty($value['name_line']) ?
+      $value['name_line'] :
+      trim($value['first_name'] . ' ' . $value['last_name']);
+    $administrative_area = $value['administrative_area'] ?
+      $value['country'] . '-' . $value['administrative_area'] :
+      '';
+
+    return [
+      'country_code' => $value['country'],
+      'administrative_area' => $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'],
+      'recipient' => $recipient,
+    ];
+  }
+
+}
